home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / CENVIW1.ZIP;1 / HELLO.CMM < prev    next >
Encoding:
Text File  |  1993-07-27  |  209 b   |  6 lines

  1. // Hello.cmm: My first Cmm program
  2. Count = 1;  /* Count is how many Cmm programs I've written */
  3. printf("Hello world. This is my %dst Cmm program.\n",Count);
  4. printf("Press any key to quit...");
  5. getch();
  6.